# Use Hadley's package for memory profiling
install.packages("pryr")
library(data.table); library(microbenchmark); library(pryr)
## Warning: package 'pryr' was built under R version 3.1.3
##
## Attaching package: 'pryr'
##
## The following object is masked from 'package:data.table':
##
## address
big_df <- data.frame(x = rnorm(1E5), y = sample(letters, 1E5, TRUE))
object_size(big_df)
## 1.2 MB
big_dt <- data.table(big_df)
object_size(big_dt)
## 1.2 MB
new_col <- rnorm(1E4)
microbenchmark(
big_df[1:1E4, "y"] <- new_col,
big_dt[1:1E4, `:=`(y, new_col)], times = 5
)
## Warning in `[<-.factor`(`*tmp*`, iseq, value = c(-0.695895579022114,
## -1.16917534980892, : invalid factor level, NA generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): Coerced
## 'double' RHS to 'integer' to match the factor column's underlying type.
## Character columns are now recommended (can be in keys), or coerce RHS to
## integer or character first.
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[<-.factor`(`*tmp*`, iseq, value = c(-0.695895579022114,
## -1.16917534980892, : invalid factor level, NA generated
## Warning in `[<-.factor`(`*tmp*`, iseq, value = c(-0.695895579022114,
## -1.16917534980892, : invalid factor level, NA generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): Coerced
## 'double' RHS to 'integer' to match the factor column's underlying type.
## Character columns are now recommended (can be in keys), or coerce RHS to
## integer or character first.
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[<-.factor`(`*tmp*`, iseq, value = c(-0.695895579022114,
## -1.16917534980892, : invalid factor level, NA generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): Coerced
## 'double' RHS to 'integer' to match the factor column's underlying type.
## Character columns are now recommended (can be in keys), or coerce RHS to
## integer or character first.
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): Coerced
## 'double' RHS to 'integer' to match the factor column's underlying type.
## Character columns are now recommended (can be in keys), or coerce RHS to
## integer or character first.
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[<-.factor`(`*tmp*`, iseq, value = c(-0.695895579022114,
## -1.16917534980892, : invalid factor level, NA generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): Coerced
## 'double' RHS to 'integer' to match the factor column's underlying type.
## Character columns are now recommended (can be in keys), or coerce RHS to
## integer or character first.
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -3 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -2 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## -1 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Warning in `[.data.table`(big_dt, 1:10000, `:=`(y, new_col)): RHS contains
## 0 which is outside the levels range ([1,26]) of column 1, NAs generated
## Unit: milliseconds
## expr min lq mean
## big_df[1:10000, "y"] <- new_col 13.46332 13.95034 14.94453
## big_dt[1:10000, `:=`(y, new_col)] 1535.79742 3521.57055 8643.80106
## median uq max neval cld
## 14.07203 15.59678 17.6402 5 a
## 7736.91536 12093.38010 18331.3418 5 b